home *** CD-ROM | disk | FTP | other *** search
/ CDV Software Presents (USA) / CDV Software Presents (USA).bin / demo / bk_demo.exe / DATA.PAK / ui / SelectCampaign.lua < prev    next >
Encoding:
Text File  |  2002-07-07  |  582 b   |  19 lines

  1. function LuaProcessMessage( nMessageCode, nFirst, nSecond )
  2.     if ( nMessageCode == 10001 ) then        --IMC_CANCEL
  3.         OutputValue( "SelectCampaign CANCEL message", nMessageCode )
  4.         AddMessage( 65537, 10001, 1 )        --NEXT_STATE
  5.         return 1
  6.     end
  7.  
  8.     if ( nMessageCode == 536936448 and ( nFirst >= 10001 and nFirst <= 10004 ) ) then    --IMC_CANCEL
  9.         --10001 - CANCEL
  10.         --10002, 10003, 10004 - GERMAN or RUSSIAN or ALLIES campaigns
  11.         OutputValue( "CANCEL PRESSED", nFirst )
  12.         local nMessage = SetProcessedFlag( nFirst )
  13.         AddMessage( nMessage, 0, 1 )
  14.         return 1
  15.     end
  16.  
  17.     return 0
  18. end
  19.